home *** CD-ROM | disk | FTP | other *** search
- ' Global Module - Explore Visual Basic
- '
- ' -------------------------------------------------------------------------
- ' Copyright (C) 1992 Susie Parrent
- '
- ' You may use this software at no charge provided that you agree
- ' that the author, New Riders Publishing and Microsoft have no
- ' warranty, obligations or liability for any files included in the
- ' sample files provided herein.
- '
- ' The software is owned by Microsoft or its suppliers and is
- ' protected by United States copyright laws and international
- ' treaty provisions. Therefore, you must treat the software like
- ' any other copyrighted material (e.g., a book or musical recording)
- ' EXCEPT that you may either (a) make one copy of the software solely
- ' for backup or archival purposes, or (b) transfer the software to a
- ' single hard disk provided you keep the original solely for backup
- ' or archival purposes. You may not copy the written materials
- ' accompanying the software.
- '
- ' It may NOT be used in any training for which a fee is charged
- ' without the express written permission of the author.
-
- ' ------------------------------------------------------------------------
-
- Global Const TRUE = -1
- Global Const FALSE = 0
-
- ' BackColor (standard RGB colors: form)
- Global Const LIGHT_YELLOW = &H80FFFF
- Global Const WHITE = &HFFFFFF
-
- Global Const KEY_F1 = &H70
-
- ' Help engine declarations.
- ' Commands to pass WinHelp()
- Global Const HELP_CONTEXT = &H1 ' Display topic identified by number in Data
- Global Const HELP_QUIT = &H2 ' Terminate help
- Global Const HELP_INDEX = &H3 ' Display index
- Global Const HELP_HELPONHELP = &H4 ' Display help on using help
-
- Declare Function WinHelp Lib "User" (ByVal hWnd As Integer, ByVal lpHelpFile As String, ByVal wCommand As Integer, dwData As Any) As Integer
-
- Global HelpfileName As String
-
- ' Constants for various help topics
-
- Global Const HOW_TO_USE = 100&
- Global Const ABOUT_FORM1 = 200&
- Global Const ABOUT_FORM2 = 300&
- Global Const ABOUT_FORM3 = 400&
- Global Const ABOUT_FORM4 = 500&
- Global Const ABOUT_FORM5 = 600&
- Global Const ABOUT_FORM6 = 700&
- Global Const NULL = 0&
-
-